home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / text / faqs / ai-faq.genetic.part6 < prev    next >
Encoding:
Internet Message Format  |  1994-03-19  |  56.2 KB

  1. Subject: FAQ: comp.ai.genetic part 6/6 (A Guide to Frequently Asked Questions)
  2. Newsgroups: comp.ai.genetic,comp.answers,news.answers
  3. From: David.Beasley@cf.cm.ac.uk (David Beasley)
  4. Date: Fri, 18 Mar 94 15:21:45 GMT
  5.  
  6. Archive-name:   ai-faq/genetic/part6
  7. Last-Modified:  3/20/94
  8. Issue:          2.1
  9.  
  10. TABLE OF CONTENTS OF PART 6
  11.      Q21: What are Gray codes, and why are they used?
  12.  
  13.      Q22: What test data is available?
  14.  
  15.      Q42: What is Life all about?
  16.      Q42b: Is there a FAQ to this group?
  17.  
  18.      Q98: Are there any patents on EAs?
  19.  
  20.      Q99: A Glossary on EAs?
  21.  
  22. ----------------------------------------------------------------------
  23.  
  24. Subject: Q21: What are Gray codes, and why are they used?
  25.  
  26.      The correct spelling is "Gray"---not  "gray",  "Grey",  or  "grey"---
  27.      since Gray codes are named after the Frank Gray  who  patented  their
  28.      use for shaft encoders in 1953  [1].   Gray  codes  actually  have  a
  29.      longer history, and the inquisitive reader may want to  look  up  the
  30.      August, 1972,  issue  of  Scientific  American,  which  contains  two
  31.      articles of interest: one on the origin  of  binary  codes  [2],  and
  32.      another by Martin  Gardner  on  some  entertaining  aspects  of  Gray
  33.      codes [3].  Other references containing descriptions  of  Gray  codes
  34.      and more modern, non-GA, applications include the second  edition  of
  35.      Numerical  Recipes  [4],  Horowitz  and  Hill  [5],  Kozen  [6],  and
  36.      Reingold [7].
  37.  
  38.      A Gray code represents  each  number  in  the  sequence  of  integers
  39.      {0...2^N-1} as a binary string of length N  in  an  order  such  that
  40.      adjacent integers have Gray code representations that differ in  only
  41.      one bit position.  Marching through the  integer  sequence  therefore
  42.      requires flipping just one bit at a time.  Some  call  this  defining
  43.      property of Gray codes the "adjacency property" [8].
  44.  
  45.      Example (N=3):  The binary coding of {0...7} is {000, 001, 010,  011,
  46.      100, 101, 110, 111}, while one Gray coding is {000,  001,  011,  010,
  47.      110, 111, 101, 100}.  In essence, a Gray code takes a binary sequence
  48.      and shuffles  it  to  form  some  new  sequence  with  the  adjacency
  49.      property.  There exist,  therefore,  multiple  Gray  codings  or  any
  50.      given N.  The example shown here belongs to a  class  of  Gray  codes
  51.      that goes by the fancy name "binary-reflected Gray codes".  These are
  52.      the most  commonly  seen  Gray  codes,  and  one  simple  scheme  for
  53.      generationg such a Gray code sequence says, "start with all bits zero
  54.      and successively flip the right-most bit that produces a new string."
  55.  
  56.      Hollstien [9] investigated the use of GAs for optimizing functions of
  57.      two variables and claimed that  a  Gray  code  representation  worked
  58.      slightly better than the binary representation.  He attrributed  this
  59.      difference to the adjacency property of Gray codes.   Notice  in  the
  60.      above example that the step from three to four requires the  flipping
  61.      of all the bits in the binary representation.  In  general,  adjacent
  62.      integers in the binary representaion often lie many bit flips  apart.
  63.      This  fact makes it less likely that a MUTATION operator  can  effect
  64.      small changes for a binary-coded INDIVIDUAL.
  65.  
  66.      A Gray code representation seems to  improve  a  MUTATION  operator's
  67.      chances of making incremental improvements, and a  close  examination
  68.      suggests why.  In  a  binary-coded  string  of  length  N,  a  single
  69.      mutation in the most significant  bit  (MSB)  alters  the  number  by
  70.      2^(N-1).  In a Gray-coded string, fewer mutations lead  to  a  change
  71.      this large.  The user of Gray codes does, however, pay  a  price  for
  72.      this feature: those "fewer mutations" lead to  much  larger  changes.
  73.      In the Gray code illustrated above, for example, a single mutation of
  74.      the left-most bit changes a zero to a seven and vice-versa, while the
  75.      largest change a single mutation can make to a corresponding  binary-
  76.      coded INDIVIDUAL is always four.  One might still view this aspect of
  77.      Gray codes with some favor:  most  mutations  will  make  only  small
  78.      changes, while the occasional  mutation  that  effects  a  truly  big
  79.      change may initiate EXPLORATION of an  entirely  new  region  in  the
  80.      space of CHROMOSOMEs.
  81.  
  82.      The algorithm for converting between the binary-reflected  Gray  code
  83.      described above  and  the  standard  binary  code  turns  out  to  be
  84.      surprisingly simple to state.  First label the bits of a binary-coded
  85.      string B[i], where larger i's represent more  significant  bits,  and
  86.      similarly label the corresponding Gray-coded string G[i].  We convert
  87.      one to the other as follows:  Copy the most  significant  bit.   Then
  88.      for each smaller i  do  either  G[i] = XOR(B[i+1], B[i])---to convert
  89.      binary to  Gray---or B[i] = XOR(B[i+1], G[i])---to  convert  Gray  to
  90.      binary.
  91.  
  92.      One may easily implement the above algorithm in C.   Imagine  you  do
  93.      something like
  94.  
  95.       typedef unsigned short ALLELE;
  96.  
  97.      and then use type "allele" for each bit in your CHROMOSOME, then  the
  98.      following two functions will convert between  binary  and  Gray  code
  99.      representations.  You must pass them the address  of  the  high-order
  100.      bits for each of the two strings  as  well  as  the  length  of  each
  101.      string.  (See  the  comment  statements  for  examples.)   NB:  These
  102.      functions assume a chromosome arranged  as  shown  in  the  following
  103.      illustration.
  104.  
  105.      index:    C[9]                                                    C[0]
  106.            *-----------------------------------------------------------*
  107.      Char C:   |  1  |  1  |  0  |  0  |  1  |  0  |  1  |  0  |  0  |  0  |
  108.            *-----------------------------------------------------------*
  109.            ^^^^^                                                 ^^^^^
  110.            high-order bit                                  low-order bit
  111.  
  112.  C CODE
  113.      /* Gray <==> binary conversion routines */
  114.      /* written by Dan T. Abell, 7 October 1993 */
  115.      /* please send any comments or suggestions */
  116.      /* to dabell@quark.umd.edu */
  117.  
  118.      void gray_to_binary (Cg, Cb, n)
  119.      /* convert chromosome of length n from */
  120.      /* Gray code to binary representation */
  121.      allele    *Cg,*Cb;
  122.      int  n;
  123.      {
  124.       int j;
  125.  
  126.       *Cb = *Cg;               /* copy the high-order bit */
  127.       for (j = 0; j < n; j++) {
  128.            Cb--; Cg--;         /* for the remaining bits */
  129.            *Cb= *(Cb+1)^*Cg;   /* do the appropriate XOR */
  130.       }
  131.      }
  132.  
  133.      void binary_to_gray(Cb, Cg, n)
  134.      /* convert chromosome of length n from */
  135.      /* binary to Gray code representation */
  136.      allele    *Cb, *Cg;
  137.      int  n;
  138.      {
  139.       int j;
  140.  
  141.       *Cg = *Cb;               /* copy the high-order bit */
  142.       for (j = 0; j < n; j++) {
  143.            Cg--; Cb--;         /* for the remaining bits */
  144.            *Cg= *(Cb+1)^*Cb;   /* do the appropriate XOR */
  145.       }
  146.      }
  147.  
  148.      References
  149.  
  150.      [1]  F.  Gray,  "Pulse  Code  Communication", U. S. Patent 2 632 058,
  151.      March 17, 1953.
  152.  
  153.      [2] F. G. Heath, "Origins of the Binary  Code",  Scientific  American
  154.      v.227,n.2 (August, 1972) p.76.
  155.  
  156.      [3]   Martin   Gardner,  "Mathematical  Games",  Scientific  American
  157.      v.227,n.2 (August, 1972) p.106.
  158.  
  159.      [4] William H. Press, et al., Numerical Recipes in C, Second  Edition
  160.      (Cambridge University Press, 1992).
  161.  
  162.      [5]  Paul  Horowitz and Winfield Hill, The Art of Electronics, Second
  163.      Edition (Cambridge University Press, 1989).
  164.  
  165.      [6] Dexter Kozen, The Design and Analysis  of  Algorithms  (Springer-
  166.      Verlag, New York, NY, 1992).
  167.  
  168.      [7]  Edward  M.  Reingold, et al., Combinatorial Algorithms (Prentice
  169.      Hall, Englewood Cliffs, NJ, 1977).
  170.  
  171.      [8] David E. Goldberg, GENETIC ALGORITHMs  in  Search,  OPTIMIZATION,
  172.      and Machine Learning (Addison-Wesley, Reading, MA, 1989).
  173.  
  174.      [9]  R.  B.  Hollstien,  Artificial  Genetic  Adaptation  in Computer
  175.      Control Systems (PhD thesis, University of Michigan, 1971).
  176.  
  177. ------------------------------
  178.  
  179. Subject: Q22: What test data is available?
  180.  
  181.  TSP DATA
  182.      There is a TSP library (TSPLIB) available which has many  solved  and
  183.      semi-solved TSPs and different variants. The library is maintained by
  184.      Gerhard Reinelt <reinelt@ares.iwr.Uni-Heidelberg.de>. It is available
  185.      from various FTP sites, including: softlib.cs.rice.edu:/pub/
  186.  
  187.  OTHER DATA
  188.      Information  about  test problems for any of the problem areas listed
  189.      below can be obtained by emailing o.rlibrary@ic.ac.uk with  the  body
  190.      of the email message being just the word info
  191.  
  192.      Problem  areas: Assignment problem, Crew scheduling, Data envelopment
  193.      analysis, Generalised assignment problem, Integer programming, Linear
  194.      programming,  Location problems, Multiple knapsack problem, Quadratic
  195.      assignment problem, Resource constrained  shortest  path,  Scheduling
  196.      (flow  shop,  job  shop,  open shop), Set covering, Set partitioning,
  197.      Steiner  problems,  TRAVELLING  SALESMAN   PROBLEM,   Two-dimensional
  198.      cutting problems, Vehicle routing problems
  199.  
  200. ------------------------------
  201. Subject: Q42: What is Life all about?
  202.  
  203.      42
  204.  
  205.      References
  206.  
  207.      Adams, D. (1979) "The Hitch Hiker's Guide to the Galaxy", London: Pan
  208.      Books.
  209.  
  210.      Adams, D. (1980) "The Restaurant at the End of the Universe", London:
  211.      Pan Books.
  212.  
  213.      Adams,  D.  (1982)  "Life,  the Universe and Everything", London: Pan
  214.      Books.
  215.  
  216.      Adams, D. (1984) "So long, and thanks for all the Fish", London:  Pan
  217.      Books.
  218.  
  219.      Adams, D. (1992) "Mostly Harmless", London: Heinemann.
  220.  
  221.  
  222. ------------------------------
  223.  
  224. Subject: Q42b: Is there a FAQ to this group?
  225.  
  226.      Yes.
  227.  
  228.  
  229. ------------------------------
  230.  
  231. Subject: Q98: Are there any patents on EAs?
  232.  
  233.      Process  patents  have  been  issued  both  for  the  Bucket  Brigade
  234.      Algorithm (BBA) in CLASSIFIER SYSTEMs: U.S.  patent  #[..]  (to  John
  235.      Holland) and for GP: U.S. patent #4,935,877 (to John Koza).
  236.  
  237.      This  FAQ  does  not attempt to provide legal advice. However, use of
  238.      the Lisp code in the book [KOZA92] is freely  licensed  for  academic
  239.      use.  Although  those  wishing  to make commercial use of any process
  240.      should obviously consult any patent holders in question, it is pretty
  241.      clear  that  it's  not  in  anyone's  best  interests to stifle GA/GP
  242.      research and/or development. Commercial licenses much like those used
  243.      for  CAD  software  can  presumably  be obtained for the use of these
  244.      processes where necessary.
  245.  
  246.      Jarmo Alander's massive bibliography of GAs (see  Q10.8)  includes  a
  247.      (probably)  complete  list  of  all currently know patents.  There is
  248.      also a periodic posting on comp.ai.neural-nets by  Gregory  Aharonian
  249.      <srctran@world.std.com>  about  patents on Artificial Neural Networks
  250.      (ANNs).
  251.  
  252.  
  253. ------------------------------
  254.  
  255. Subject: Q99: A Glossary on EAs?
  256.  
  257.      1/5 SUCCESS RULE:
  258.       Derived by I. Rechenberg,  the  suggestion  that  when  Gaussian
  259.       MUTATIONs  are  applied  to real-valued vectors in searching for
  260.       the minimum of a function, a rule-of-thumb to attain good  rates
  261.       of  error  convergence  is  to  adapt  the STANDARD DEVIATION of
  262.       mutations to generate one superior solution out  of  every  five
  263.       attempts.
  264.  
  265.  A
  266.      ADAPTIVE BEHAVIOUR:
  267.       "...underlying  mechanisms  that allow animals, and potentially,
  268.       ROBOTs to adapt and survive in uncertain environments" --- Meyer
  269.       & Wilson (1991), [SAB90]
  270.  
  271.      AI:  See ARTIFICIAL INTELLIGENCE.
  272.  
  273.      ALIFE:
  274.       See ARTIFICIAL LIFE.
  275.  
  276.      ALLELE:
  277.       (biol) Each GENE is able to occupy only a particular region of a
  278.       CHROMOSOME, it's locus. At any given locus there may  exist,  in
  279.       the POPULATION, alternative forms of the gene. These alternative
  280.       are called alleles of one another.
  281.  
  282.       (EC) The value of a GENE.  Hence, for a  binary  representation,
  283.       each gene may have an ALLELE of 0 or 1.
  284.  
  285.      ARTIFICIAL INTELLIGENCE:
  286.       "...the  study  of  how to make computers do things at which, at
  287.       the moment, people are better" --- Elaine  Rich (1988)
  288.  
  289.      ARTIFICIAL LIFE:
  290.       Term coined by Christopher G.  Langton  for  his  1987  [ALIFEI]
  291.       conference.  In  the preface of the proceedings he defines ALIFE
  292.       as "...the study of simple computer generated hypothetical  life
  293.       forms, i.e.  life-as-it-could-be."
  294.  
  295.  B
  296.      BUILDING BLOCK:
  297.       (EC)  A  small,  tightly clustered group of GENEs which have co-
  298.       evolved  in  such  a  way  that  their  introduction  into   any
  299.       CHROMOSOME  will  be  likely  to  give increased FITNESS to that
  300.       chromosome.
  301.  
  302.       The "building block hypothesis" [GOLD89] states  that  GAs  find
  303.       solutions  by first finding as many BUILDING BLOCKs as possible,
  304.       and then combining them together to give the highest FITNESS.
  305.  
  306.  C
  307.      CENTRAL DOGMA:
  308.       (biol) The dogma that nucleic acids act  as  templates  for  the
  309.       synthesis  of  proteins,  but never the reverse. More generally,
  310.       the dogma that GENEs exert an influence over the form of a body,
  311.       but  the  form  of  a body is never translated back into genetic
  312.       code: acquired characteristics are not inherited. cf LAMARCKISM.
  313.  
  314.       (GA)  The  dogma  that  the  behaviour  of the algorithm must be
  315.       analysed using the SCHEMA THEOREM.
  316.  
  317.       (life in general) The dogma that this all is useful in a way.
  318.  
  319.       "You guys have a dogma. A certain irrational  set  of  believes.
  320.       Well,  here's  my  irrational  set  of  beliefs.  Something that
  321.       works."
  322.  
  323.       --- Rodney A. Brooks, [LEVY92]
  324.  
  325.      CFS: See CLASSIFIER SYSTEM.
  326.  
  327.      CHROMOSOME:
  328.       (biol) One of the chains of DNA  found  in  cells.   CHROMOSOMEs
  329.       contain  GENEs,  each  encoded as a subsection of the DNA chain.
  330.       Chromosomes are usually present in all  cells  in  an  organism,
  331.       even  though  only  a minority of them will be active in any one
  332.       cell.
  333.       (EC) A datastructure which holds a `string' of task  parameters,
  334.       or  GENEs.   This  may  be stored, for example, as a binary bit-
  335.       string, or an array of integers.
  336.  
  337.      CLASSIFIER SYSTEM:
  338.       A system which takes a (set of) inputs, and produces a (set  of)
  339.       outputs  which  indicate  some classification of the inputs.  An
  340.       example might take inputs from sensors in a chemical plant,  and
  341.       classify  them  in  terms  of: 'running ok', 'needs more water',
  342.       'needs less water', 'emergency'. See Q1.4 for more  information.
  343.  
  344.      COMBINATORIAL OPTIMIZATION:
  345.       Some tasks involve combining a set of entities in a specific way
  346.       (e.g.  the task of building a house).  A  general  combinatorial
  347.       task  involves deciding (a) the specifications of those entities
  348.       (e.g. what size, shape, material to make the bricks  from),  and
  349.       (b)  the  way in which those entities are brought together (e.g.
  350.       the number of bricks, and  their  relative  positions).  If  the
  351.       resulting  combination  of  entities  can in some way be given a
  352.       FITNESS score, then COMBINATORIAL OPTIMIZATION is  the  task  of
  353.       designing  a  set  of  entities,  and  deciding how they must be
  354.       configured, so  as  to  give  maximum  fitness.  cf  ORDER-BASED
  355.       PROBLEM.
  356.  
  357.      COMMA STRATEGY:
  358.       Notation  originally  proposed  in  EVOLUTION STRATEGIEs, when a
  359.       POPULATION of "mu" PARENTs generates "lambda" OFFSPRING and  the
  360.       mu  parents are discarded, leving only the lambda INDIVIDUALs to
  361.       compete directly.  Such a process is written  as  a  (mu,lambda)
  362.       search.   The  process  of  only  competing  offspring then is a
  363.       "comma strategy." cf.  PLUS STRATEGY.
  364.  
  365.      CONVERGED:
  366.       A GENE is said to have CONVERGED when 95% of the CHROMOSOMEs  in
  367.       the  POPULATION  all  contain the same ALLELE for that gene.  In
  368.       some circumstances, a population can be said to  have  converged
  369.       when  all  genes  have  converged. (However, this is not true of
  370.       populations containing multiple SPECIES, for example.)
  371.  
  372.       Most people use "convergence" fairly loosely, to  mean  "the  GA
  373.       has  stopped  finding new, better solutions".  Of course, if you
  374.       wait long  enough,  the  GA  will  *eventually*  find  a  better
  375.       solution  (unless  you  have  already found the global optimum).
  376.       What people really mean is "I'm not willing to wait for  the  GA
  377.       to  find  a  new,  better  solution, because I've already waited
  378.       longer than I wanted to and it hasn't improved in ages."
  379.  
  380.      CONVERGENCE VELOCITY:
  381.       The rate of error reduction.
  382.  
  383.      COOPERATION:
  384.       The behavior of two or more INDIVIDUALs acting to  increase  the
  385.       gains of all participating individuals.
  386.  
  387.      CROSSOVER:
  388.       (EC)  A  REPRODUCTION  OPERATOR  which forms a new CHROMOSOME by
  389.       combining parts  of  each  of  two  `parent'  chromosomes.   The
  390.       simplest  form  is single-point CROSSOVER, in which an arbitrary
  391.       point in the chromosome is  picked.  All  the  information  from
  392.       PARENT  A  is  copied  from the start up to the crossover point,
  393.       then all the information  from  parent  B  is  copied  from  the
  394.       crossover point to the end of the chromosome. The new chromosome
  395.       thus gets the head of one parent's chromosome combined with  the
  396.       tail  of  the  other.   Variations exist which use more than one
  397.       crossover point, or combine information from  parents  in  other
  398.       ways.
  399.       (biol)  A   complicated   process   whereby  CHROMOSOMEs,  while
  400.       engaged in the  production  of  GAMETEs,  exchange  portions  of
  401.       genetic material.  The result is that an almost infinite variety
  402.       of  gametes  may  be  produced.   Subsequently,  during   sexual
  403.       REPRODUCTION,  male and female gametes (i.e. sperm and ova) fuse
  404.       to  produce  a  new  cell  with  a  complete  set   of   DIPLOID
  405.       CHROMOSOMEs.
  406.       In  [HOLLAND92]  the sentence "When sperm and ova fuse, matching
  407.       CHROMOSOMEs line up with one another and then cross over partway
  408.       along  their  length,  thus  swapping  genetic material" is thus
  409.       wrong, since these two activities occur in  different  parts  of
  410.       the  life  cycle.  [eds note:  If sexual REPRODUCTION (the  Real
  411.       Thing) worked like in GAs, then Holland would be right,  but  as
  412.       we  all  know,   it's   not   the  case.   We just encountered a
  413.       Freudian  slip  of  a  Grandmaster.  BTW:    even   the   German
  414.       translation  of   this  article  has  this  "bug", although it's
  415.       well-hidden by the translator.]
  416.  
  417.      CS:  See CLASSIFIER SYSTEM.
  418.  
  419.  D
  420.      DARWINISM:
  421.       (biol) Theory of EVOLUTION, proposed by Darwin,  that  evolution
  422.       comes    about    through    random   variation   of   heritable
  423.       characteristics, coupled with natural SELECTION (survival of the
  424.       fittest).  A  physical mechanism for this, in terms of GENEs and
  425.       CHROMOSOMEs, was discovered many years later. cf LAMARCKISM.
  426.  
  427.       (EC) Theory which inspired all branches of EC.
  428.  
  429.      DECEPTION:
  430.       The condition where the  combination  of  good  BUILDING  BLOCKs
  431.       leads   to  reduced  FITNESS,  rather  than  increased  fitness.
  432.       Proposed by [GOLD89] as a reason for the failure of GAs on  many
  433.       tasks.
  434.  
  435.      DIPLOID CHROMOSOME:
  436.       (biol)  A  CHROMOSOME  which  consists  of  a pair of homologous
  437.       chromosomes, i.e. two chromosomes containing the same  GENEs  in
  438.       the  same  sequence.  In sexually reproducing SPECIES, the genes
  439.       in one of the chromosomes will  have  been  inherited  from  the
  440.       father's GAMETE (sperm), while the genes in the other chromosome
  441.       are from the mother's gamete (ovum).
  442.  
  443.      DNA: (biol) Deoxyribonucleic Acid, a double stranded macromolecule of
  444.       helical  structure  (comparable  to  a  spiral  staircase). Both
  445.       single strands are linear,  unbranched  nucleic  acid  molecules
  446.       build  up  from  alternating  deoxyribose  (sugar) and phosphate
  447.       molecules. Each deoxyribose part  is  coupled  to  a  nucleotide
  448.       base,  which  is  responsible for establishing the connection to
  449.       the other strand of the DNA.  The  4  nucleotide  bases  Adenine
  450.       (A),  Thymine (T), Cytosine (C) and Guanine (G) are the alphabet
  451.       of the genetic information. The sequences of these bases in  the
  452.       DNA  molecule determines the building plan of any organism. [eds
  453.       note: suggested reading: James  D.  Watson  (1968)  "The  Double
  454.       Helix", London: Weidenfeld and Nicholson]
  455.  
  456.       (literature)  Douglas  Noel  Adams, contemporary Science Fiction
  457.       comedy writer. Published "The Hitch-Hiker's Guide to the Galaxy"
  458.       when  he  was  25 years old, which made him one of the currently
  459.       most  successful  British  authors.   [eds  note:  interestingly
  460.       Watson  was  also 25 years old, when he discovered the DNA; both
  461.       events are probably not interconnected; you might also  want  to
  462.       look  at:  Neil  Gaiman's  (1987)  "DON'T  PANIC -- The Official
  463.       Hitch-Hiker's Guide to the Galaxy companion", and of course  get
  464.       your  hands  on  the  wholly  remarkable FAQ in alt.fan.douglas-
  465.       adams]
  466.  
  467.      DNS: (biol) Desoxyribonukleinsaeure, German for DNA.
  468.  
  469.       (comp) The Domain Name System, a distributed database system for
  470.       translating    computer    names   (e.g.   lumpi.informatik.uni-
  471.       dortmund.de)   into   numeric   Internet,   i.e.    IP-addresses
  472.       (129.217.36.140)  and  vice-versa.   DNS allows you to hook into
  473.       the net without remembering long lists  of  numeric  references,
  474.       unless  your  system  administrator  has incorrectly set-up your
  475.       site's system.
  476.  
  477.  E
  478.      EC:  See EVOLUTIONARY COMPUTATION.
  479.  
  480.      ENCORE:
  481.       The EvolutioNary Computation REpository Network.  An network  of
  482.       anonymous  FTP  sites  holding  all manner of interesting things
  483.       related to EC.  The default "EClair" node is  at  the  Santa  Fe
  484.       Institute:   alife.santafe.edu:/pub/USER-AREA/EC/  mirror  sites
  485.       include    The    Chinese    University    of     Hong     Kong:
  486.       ftp.cs.cuhk.hk:/pub/EC/  Other nodes are planned.  See Q15.3 for
  487.       more information.
  488.  
  489.      ENVIRONMENT:
  490.       (biol) That which  surrounds  an  organism.  Can  be  'physical'
  491.       (abiotic),  or  biotic.   In both, the organism occupies a NICHE
  492.       which influences its FITNESS within the  total  ENVIRONMENT.   A
  493.       biotic  environment  may  present   frequency-dependent  fitness
  494.       functions within a  POPULATION,  that  is,  the  fitness  of  an
  495.       organism's  behaviour  may  depend upon how many others are also
  496.       doing it.  Over several  GENERATIONs,  biotic  environments  may
  497.       foster   co-evolution,  in  which  fitness  is  determined  with
  498.       SELECTION partly by other SPECIES.
  499.  
  500.      EP:  See EVOLUTIONARY PROGRAMMING.
  501.  
  502.      EPISTASIS:
  503.       (biol) A "masking" or "switching" effect among GENEs.  A biology
  504.       textbook says: "A gene is said to be epistatic when its presence
  505.       suppresses the effect of a gene  at  another  locus.   Epistatic
  506.       genes  are  sometimes  called  inhibiting genes because of their
  507.       effect on other genes which are described as hypostatic."
  508.  
  509.       (EC) When EC  researchers  use  the  term  EPISTASIS,  they  are
  510.       generally  referring  to  any  kind  of strong interaction among
  511.       GENEs, not just masking effects. A possible definition is:
  512.  
  513.       EPISTASIS is  the  interaction  between  different  GENEs  in  a
  514.       CHROMOSOME.   It  is  the  extent  to  which the contribution to
  515.       FITNESS of one gene depends on the values of other genes.
  516.  
  517.       Problems with little  or  no  EPISTASIS  are  trivial  to  solve
  518.       (hillclimbing  is sufficient). But highly epistatic problems are
  519.       difficult to solve, even for GAs.   High  epistasis  means  that
  520.       BUILDING BLOCKs cannot form, and there will be DECEPTION.
  521.  
  522.      ES:  See EVOLUTION STRATEGY.
  523.  
  524.      ESS: See EVOLUTIONARILY STABLE STRATEGY.
  525.  
  526.      EVOLUTION:
  527.       That  process  of  change  which is assured given a reproductive
  528.       POPULATION in which there are (1) varieties of INDIVIDUALs, with
  529.       some  varieties being (2) heritable, of which some varieties (3)
  530.       differ in FITNESS (reproductive success).
  531.       "Don't assume that all people who accept EVOLUTION are atheists"
  532.  
  533.       --- Talk.origin FAQ
  534.  
  535.      EVOLUTION STRATEGIE:
  536.  
  537.      EVOLUTION STRATEGY:
  538.       A type of evolutionary algorithm developed in the early 1960s in
  539.       Germany.  It employs real-coded parameters, and in its  original
  540.       form,  it  relied  on  MUTATION  as  the  search operator, and a
  541.       POPULATION size of one. Since then it has evolved to share  many
  542.       features   with   GENETIC   ALGORITHMs.    See   Q1.3  for  more
  543.       information.
  544.  
  545.      EVOLUTIONARILY STABLE STRATEGY:
  546.       A strategy that does well in a POPULATION dominated by the  same
  547.       strategy.  (cf Maynard Smith, 1974)
  548.  
  549.      EVOLUTIONARY COMPUTATION:
  550.       Encompasses  methods of simulating EVOLUTION on a computer.  The
  551.       term is relatively new and represents an effort  bring  together
  552.       researchers  who have been working in closely related fields but
  553.       following  different  paradigms.   The  field  is  now  seen  as
  554.       including  research in GENETIC ALGORITHMs, EVOLUTION STRATEGIEs,
  555.       EVOLUTIONARY PROGRAMMING, ARTIFICIAL LIFE, and so forth.  For  a
  556.       good overview see the editorial introduction to Vol. 1, No. 1 of
  557.       "Evolutionary Computation" (MIT Press, 1993).  That, along  with
  558.       the  papers  in  the  issue,  should  give  you  a  good idea of
  559.       representative research.
  560.  
  561.      EVOLUTIONARY PROGRAMMING:
  562.       An evolutionay algorithm developed in the mid  1960s.  It  is  a
  563.       stochastic  OPTIMIZATION  strategy,  which is similar to GENETIC
  564.       ALGORITHMs, but dispenses with  both  "genomic"  representations
  565.       and  with  CROSSOVER  as  a REPRODUCTION OPERATOR.  See Q1.2 for
  566.       more information.
  567.  
  568.  
  569.      EVOLUTIONARY SYSTEMS:
  570.       A process or system which employs the evolutionary  dynamics  of
  571.       REPRODUCTION, MUTATION, competition and SELECTION.  The specific
  572.       forms of these  processes  are  irrelevant  to  a  system  being
  573.       described as "evolutionary."
  574.  
  575.  
  576.      EXPECTANCY:
  577.       Or  expected  value.   Pertaining  to a random variable X, for a
  578.       continuous random variable, the expected value is:
  579.       E(X) = INTEGRAL(-inf, inf) [X f(X) dX].
  580.       The discrete expectation takes a similar form using a  summation
  581.       instead of an integral.
  582.  
  583.      EXPLOITATION:
  584.       When  traversing  a SEARCH SPACE, EXPLOITATION is the process of
  585.       using information gathered from previously visited points in the
  586.       search  space  to  determine which places might be profitable to
  587.       visit next.  An  example  is  hillclimbing,  which  investigates
  588.       adjacent  points in the search space, and moves in the direction
  589.       giving  the  greatest   increase   in   FITNESS.    Exploitation
  590.       techniques are good at finding local maxima.
  591.  
  592.      EXPLORATION:
  593.       The  process of visiting entirely new regions of a SEARCH SPACE,
  594.       to  see  if  anything  promising  may  be  found  there.  Unlike
  595.       EXPLOITATION,  EXPLORATION  involves  leaps  into  the  unknown.
  596.       Problems which have many local  maxima  can  sometimes  only  be
  597.       solved by this sort of random search.
  598.  
  599.  F
  600.      FAQ: Frequently Asked Questions. See definition given near the top of
  601.       part 1.
  602.  
  603.      FITNESS:
  604.       (biol) Loosely: adaptedness.  Often measured as,  and  sometimes
  605.       equated to, relative reproductive success.  Also proportional to
  606.       expected time to extinction.  "The fit are those who  fit  their
  607.       existing  ENVIRONMENTs  and  whose  descendants  will fit future
  608.       environments."  (J.  Thoday,  "A  Century  of  Darwin",   1959).
  609.       Accidents of history are relevant.
  610.  
  611.       (EC)  A  value assigned to an INDIVIDUAL which reflects how well
  612.       the INDIVIDUAL solves the task in hand. A "fitness function"  is
  613.       used to map a CHROMOSOME to a FITNESS value.
  614.  
  615.      FUNCTION OPTIMIZATION:
  616.       For  a  function  which  takes  a set of N input parameters, and
  617.       returns a single output value, F, FUNCTION OPTIMIZATION  is  the
  618.       task  of  finding  the  set(s)  of  parameters which produce the
  619.       maximum (or minimum) value of F. Function OPTIMIZATION is a type
  620.       of VALUE-BASED PROBLEM.
  621.  
  622.      FTP: File  Transfer  Protocol. A system which allows the retrieval of
  623.       files stored on a remote computer. Basic FTP requires a password
  624.       before  access  can  be gained to the remote computer. Anonymous
  625.       FTP  does  not  require  a  special   password:   after   giving
  626.       "anonymous"  as  the user name, any password will do (typically,
  627.       you give your email address at this point). Files  available  by
  628.       FTP are specified as <ftp-site-name>:<the-complete-filename> See
  629.       Q15.5.
  630.  
  631.      FUNCTION SET:
  632.       (GP) The set of operators used in GP. These functions label  the
  633.       internal (non-leaf) points of the parse trees that represent the
  634.       programs in the POPULATION.  An example FUNCTION  SET  might  be
  635.       {+, -, *}.
  636.  
  637.  G
  638.      GA:  See GENETIC ALGORITHM.
  639.  
  640.      GAME THEORY:
  641.       A  mathematical theory originally developed for human games, and
  642.       generalized to human economics and  military  strategy,  and  to
  643.       EVOLUTION in the theory of EVOLUTIONARILY STABLE STRATEGY.  GAME
  644.       THEORY comes into it's own wherever the optimum  policy  is  not
  645.       fixed,  but  depends upon the policy which is statistically most
  646.       likely to be adopted by opponents.
  647.  
  648.      GAMETE:
  649.       (biol) Cells which carry genetic information from their  PARENTs
  650.       for  the  purposes  of  sexual  REPRODUCTION.   In animals, male
  651.       GAMETEs are called sperm, female gametes are called ova. Gametes
  652.       have HAPLOID CHROMOSOMEs.
  653.  
  654.      GAUSSIAN DISTRIBUTION:
  655.       See NORMALLY DISTRIBUTED.
  656.  
  657.      GENE:
  658.       (EC)  A  subsection  of a CHROMOSOME which (usually) encodes the
  659.       value of a single parameter.
  660.  
  661.       (biol) A unit of heredity. May be defined in different ways  for
  662.       different  purposes.  Molecular biologists sometimes use it in a
  663.       more  abstract  sense.  Following  Williams  (cf   Q10.7)   `any
  664.       hereditary  information  for  which  there  is  a  favorable  or
  665.       unfavorable SELECTION bias equal to several or  many  times  its
  666.       rate of endogenous change.' cf CHROMOSOME.
  667.  
  668.      GENE-POOL:
  669.       The  whole  set of GENEs in a breeding POPULATION.  The metaphor
  670.       on which the term is based  de-emphasizes  the  undeniable  fact
  671.       that  genes actually go about in discrete bodies, and emphasizes
  672.       the idea of genes flowing about the world like a liquid.
  673.  
  674.       "Everybody out of the GENE-POOL, now!"
  675.  
  676.       --- Author prefers to be anonymous
  677.  
  678.      GENERATION:
  679.       (EC) An iteration of the measurement of FITNESS and the creation
  680.       of a new POPULATION by means of REPRODUCTION OPERATORs.
  681.  
  682.      GENETIC ALGORITHM:
  683.       A  type  of  EVOLUTIONARY  COMPUTATION  devised  by John Holland
  684.       [HOLLAND92].   A  model  of  machine  learning   that   uses   a
  685.       genetic/evolutionary  metaphor.  Implementations  typically  use
  686.       fixed-length  character  strings  to  represent  their   genetic
  687.       information,  together  with  a  POPULATION of INDIVIDUALs which
  688.       undergo CROSSOVER and MUTATION  in  order  to  find  interesting
  689.       regions of the SEARCH SPACE.  See Q1.1 for more information.
  690.  
  691.      GENETIC DRIFT:
  692.       Changes  in  gene/allele  frequencies  in a POPULATION over many
  693.       GENERATIONs,  resulting  from  chance  rather  than   SELECTION.
  694.       Occurs  most  rapidly  in  small  populations.  Can lead to some
  695.       ALLELEs  becoming   `extinct',   thus   reducing   the   genetic
  696.       variability in the population.
  697.  
  698.      GENETIC PROGRAMMING:
  699.       GENETIC  ALGORITHMs applied to programs.  GENETIC PROGRAMMING is
  700.       more expressive than fixed-length character string  GAs,  though
  701.       GAs  are  likely  to  be  more  efficient  for  some  classes of
  702.       problems.  See Q1.5 for more information.
  703.  
  704.      GENETIC OPERATOR:
  705.       A search operator acting on a coding structure that is analogous
  706.       to a GENOTYPE of an organism (e.g. a CHROMOSOME).
  707.  
  708.      GENOTYPE:
  709.       The   genetic   composition  of  an  organism:  the  information
  710.       contained in the GENOME.
  711.  
  712.      GENOME:
  713.       The entire collection of GENEs (and hence CHROMOSOMEs) possessed
  714.       by an organism.
  715.  
  716.      GLOBAL OPTIMIZATION:
  717.       The  process  by  which  a  search  is made for the extremum (or
  718.       extrema) of a functional  which,  in  EVOLUTIONARY  COMPUTATION,
  719.       corresponds  to  the  FITNESS  or error function that is used to
  720.       assess the PERFORMANCE of any INDIVIDUAL.
  721.  
  722.      GP:  See GENETIC PROGRAMMING.
  723.  
  724.  H
  725.      HAPLOID CHROMOSOME:
  726.       (biol) A CHROMOSOME consisting of a single  sequence  of  GENEs.
  727.       These are found in GAMETEs.  cf DIPLOID CHROMOSOME.
  728.  
  729.       In EC, it is usual for CHROMOSOMEs to be haploid.
  730.  
  731.      HARD SELECTION:
  732.       SELECTION  acts  on  competing  INDIVIDUALs.  When only the best
  733.       available  individuals  are  retained  for   generating   future
  734.       progeny,  this  is  termed "hard selection."  In contrast, "soft
  735.       selection"  offers  a  probabilistic  mechanism  for  maitaining
  736.       individuals  to  be PARENTs of future progeny despite possessing
  737.       relatively poorer objective values.
  738.  
  739.  I
  740.      INDIVIDUAL:
  741.       A single  member  of  a  POPULATION.   In  EC,  each  INDIVIDUAL
  742.       contains  a  CHROMOSOME  (or,  more  generally,  a GENOME) which
  743.       represents a possible solution to the task being tackled, i.e. a
  744.       single  point in the SEARCH SPACE.  Other information is usually
  745.       also stored in each individual, e.g. its FITNESS.
  746.  
  747.      INVERSION:
  748.       (EC) A REORDERING operator which  works  by  selecting  two  cut
  749.       points in a CHROMOSOME, and reversing the order of all the GENEs
  750.       between those two points.
  751.  
  752.  L
  753.      LAMARCKISM:
  754.       Theory of EVOLUTION which preceded  Darwin's.  Lamarck  believed
  755.       that  evolution  came  about through the inheritance of acquired
  756.       characteristics. That is, the skills or physical features  which
  757.       an  INDIVIDUAL  acquires during its lifetime can be passed on to
  758.       its OFFSPRING.  Although Lamarckian inheritance  does  not  take
  759.       place  in  nature, the idea has been usefully applied by some in
  760.       EC.  cf DARWINISM.
  761.  
  762.      LCS: See LEARNING CLASSIFIER SYSTEM.
  763.  
  764.      LEARNING CLASSIFIER SYSTEM:
  765.       A CLASSIFIER SYSTEM which "learns" how to classify  its  inputs.
  766.       This  often involves "showing" the system many examples of input
  767.       patterns, and their corresponding correct outputs. See Q1.4  for
  768.       more information.
  769.  
  770.  M
  771.      MIGRATION:
  772.       The  transfer  of  (the  GENEs  of)  an INDIVIDUAL from one SUB-
  773.       POPULATION to another.
  774.  
  775.      MOBOT:
  776.       MOBile ROBOT.  cf ROBOT.
  777.  
  778.      MUTATION:
  779.       (EC) a REPRODUCTION OPERATOR which forms  a  new  CHROMOSOME  by
  780.       making  (usually  small) alterations to the values of GENEs in a
  781.       copy of a single, PARENT chromosome.
  782.  
  783.  N
  784.      NICHE:
  785.       (biol) In natural ecosystems, there are many different  ways  in
  786.       which  animals  may survive (grazing, hunting, on the ground, in
  787.       trees,  etc.),  and  each  survival  strategy   is   called   an
  788.       "ecological niche."  SPECIES which occupy different NICHEs (e.g.
  789.       one eating plants, the other eating insects) may coexist side by
  790.       side  without  competition,  in a stable way. But if two species
  791.       occupying the same niche are brought into the same  area,  there
  792.       will  be  competition,  and  eventually  the  weaker  of the two
  793.       species will be  made  (locally)  extinct.  Hence  diversity  of
  794.       species  depends  on them occupying a diversity of niches (or on
  795.       geographical separation).
  796.  
  797.       (EC)  In  EC,  we  often  want  to  maintain  diversity  in  the
  798.       POPULATION.   Sometimes  a  FITNESS  function may be known to be
  799.       multimodal, and we want to locate all the peaks. We may consider
  800.       each  peak  in the fitness function as analogous to a NICHE.  By
  801.       applying  techniques  such  as  fitness  sharing   (Goldberg   &
  802.       Richardson,  [ICGA87]),  the  population  can  be prevented from
  803.       converging on a single peak, and instead stable  SUB-POPULATIONs
  804.       form  at  each  peak.  This  is  analogous  to different SPECIES
  805.       occupying different niches. See also SPECIES, SPECIATION.
  806.  
  807.      NORMALLY DISTRIBUTED:
  808.       A  random  variable  is  NORMALLY  DISTRIBUTED  if  its  density
  809.       function is described as
  810.       f(x)    =    1/sqrt(2*pi*sqr(sigma))    *    exp(-0.5*(x-mu)*(x-
  811.       mu)/sqr(sigma))
  812.       where mu is the mean of the random variable x and sigma  is  the
  813.       STANDARD DEVIATION.
  814.  
  815.  O
  816.      OBJECT VARIABLES:
  817.       Parameters  that are directly involved in assessing the relative
  818.       worth of an INDIVIDUAL.
  819.  
  820.      OFFSPRING:
  821.       An INDIVIDUAL generated by any process of REPRODUCTION.
  822.  
  823.      OPTIMIZATION:
  824.       The process of iteratively improving the solution to  a  problem
  825.       with respect to a specified objective function.
  826.  
  827.      ORDER-BASED PROBLEM:
  828.       A  problem  where  the solution must be specified in terms of an
  829.       arrangement (e.g. a linear ordering)  of  specific  items,  e.g.
  830.       TRAVELLING   SALESMAN   PROBLEM,  computer  process  scheduling.
  831.       ORDER-BASED PROBLEMs are a class of  COMBINATORIAL  OPTIMIZATION
  832.       problems  in  which  the  entities  to  be  combined are already
  833.       determined. cf VALUE-BASED PROBLEM.
  834.  
  835.      ONTOGENESIS:
  836.       Refers to a single organism, and  means  the  life  span  of  an
  837.       organism from it's birth to death.  cf PHYLOGENESIS.
  838.  
  839.  P
  840.      PANMICTIC POPULATION:
  841.       (EC,  biol)  A  mixed  POPULATION.   A  population  in which any
  842.       INDIVIDUAL may  be  mated  with  any  other  individual  with  a
  843.       probability  which  depends  only on FITNESS.  Most conventional
  844.       evolutionary algorithms have PANMICTIC POPULATIONs.
  845.  
  846.       The opposite is a POPULATION divided into groups known  as  SUB-
  847.       POPULATIONs,  where INDIVIDUALs may only mate with others in the
  848.       same sub-population. cf SPECIATION.
  849.  
  850.      PARENT:
  851.       An INDIVIDUAL which takes part in REPRODUCTION to  generate  one
  852.       or more other individuals, known as OFFSPRING, or children.
  853.  
  854.  
  855.      PERFORMANCE:
  856.       cf FITNESS.
  857.  
  858.      PHENOTYPE:
  859.       The expressed traits of an INDIVIDUAL.
  860.  
  861.      PHYLOGENESIS:
  862.       Refers  to  a  POPULATION  of  organisms.  The  life  span  of a
  863.       POPULATION of organisms from pre-historic times until today.  cf
  864.       ONTOGENESIS.
  865.  
  866.      PLUS STRATEGY:
  867.       Notation  originally  proposed  in  EVOLUTION STRATEGIEs, when a
  868.       POPULATION of "mu" PARENTs generates "lambda" OFFSPRING and  all
  869.       mu  and  lambda  INDIVIDUALs  compete  directly,  the process is
  870.       written as a (mu+lambda) search.  The process of  competing  all
  871.       parents  and  offspring  then  is  a "plus strategy." cf.  COMMA
  872.       STRATEGY.
  873.  
  874.      POPULATION:
  875.       A group of INDIVIDUALs which may interact together, for  example
  876.       by mating, producing OFFSPRING, etc. Typical POPULATION sizes in
  877.       EC range from 1 (for certain EVOLUTION STRATEGIEs)
  878.        to  many  thousands  (for  GENETIC   PROGRAMMING).    cf   SUB-
  879.       POPULATION.
  880.  
  881.  R
  882.      RECOMBINATION:
  883.       cf CROSSOVER.
  884.  
  885.      REORDERING:
  886.       (EC)  A  REORDERING  operator  is  a REPRODUCTION OPERATOR which
  887.       changes the order of GENEs in a CHROMOSOME,  with  the  hope  of
  888.       bringing related genes closer together, thereby facilitating the
  889.       production of BUILDING BLOCKs.  cf INVERSION.
  890.  
  891.      REPRODUCTION:
  892.       (biol, EC) The creation of a new  INDIVIDUAL  from  two  PARENTs
  893.       (sexual  REPRODUCTION).  Asexual reproduction is the creation of
  894.       a new individual from a single parent.
  895.  
  896.      REPRODUCTION OPERATOR:
  897.       (EC) A mechanism which  influences  the  way  in  which  genetic
  898.       information  is  passed  on  from  PARENT(s) to OFFSPRING during
  899.       REPRODUCTION.  REPRODUCTION  OPERATORs  fall  into  three  broad
  900.       categories: CROSSOVER, MUTATION and REORDERING operators.
  901.  
  902.      REQUISITE VARIETY:
  903.       In  GENETIC  ALGORITHMs,  when  the  POPULATION  fails to have a
  904.       "requisite variety" CROSSOVER will no longer be a useful  search
  905.       operator  because it will have a propensity to simply regenerate
  906.       the PARENTs.
  907.  
  908.      ROBOT:
  909.       "The Encyclopedia Galactica defines  a  ROBOT  as  a  mechanical
  910.       apparatus designed to do the work of man. The marketing division
  911.       of the Sirius Cybernetics Corporation defines a robot  as  `Your
  912.       Plastic Pal Who's Fun To Be With'."
  913.  
  914.       --- Douglas Adams (1979)
  915.  
  916.  S
  917.      SAFIER:
  918.       An   EVOLUTIONARY   COMPUTATION  FTP  Repository,  now  defunct.
  919.       Superceeded by ENCORE.
  920.  
  921.      SCHEMA:
  922.       A pattern of GENE values in  a  CHROMOSOME,  which  may  include
  923.       `dont  care'  states.  Thus  in a binary chromosome, each SCHEMA
  924.       (plural schemata) can be specified  by  a  string  of  the  same
  925.       length  as the chromosome, with each character one of {0, 1, #}.
  926.       A particular chromosome is said to `contain' a particular schema
  927.       if  it  matches the schema (e.g. chromosome 01101 matches schema
  928.       #1#0#).
  929.  
  930.       The `order' of a SCHEMA is the number of non-dont-care positions
  931.       specified,  while  the `defining length' is the distance between
  932.       the furthest two non-dont-care positions. Thus #1#0# is of order
  933.       2 and defining length 3.
  934.      SCHEMA THEOREM:
  935.       Theorem  devised by Holland [HOLLAND92] to explain the behaviour
  936.       of GAs.  In essence, it  says  that  a  GA  gives  exponentially
  937.       increasing   reproductive  trials  to  above  average  schemata.
  938.       Because each CHROMOSOME contains a great many schemata, the rate
  939.       of  SCHEMA processing in the POPULATION is very high, leading to
  940.       a phenomenon known as implicit parallelism. This gives a GA with
  941.       a  population  of  size  N  a  speedup  by  a factor of N cubed,
  942.       compared to a random search.
  943.  
  944.      SEARCH SPACE:
  945.       If the solution to a task can be represented by a set of N real-
  946.       valued  parameters, then the job of finding this solution can be
  947.       thought of as a  search  in  an  N-dimensional  space.  This  is
  948.       referred  to simply as the SEARCH SPACE.  More generally, if the
  949.       solution to a task can be  represented  using  a  representation
  950.       scheme,  R,  then  the  search  space is the set of all possible
  951.       configurations which may be represented in R.
  952.  
  953.      SEARCH OPERATORS:
  954.       Processes used to generate  new  INDIVIDUALs  to  be  evaluated.
  955.       SEARCH  OPERATORS  in  GENETIC ALGORITHMs are typically based on
  956.       CROSSOVER and point MUTATION.   Search  operators  in  EVOLUTION
  957.       STRATEGIEs  and  EVOLUTIONARY  PROGRAMMING typically follow from
  958.       the representation of a solution and often involve  Gaussian  or
  959.       lognormal perturbations when applied to real-valued vectors.
  960.  
  961.      SELECTION:
  962.       The process by which some INDIVIDUALs in a POPULATION are chosen
  963.       for REPRODUCTION, typically on the basis of favoring individuals
  964.       with higher FITNESS.
  965.  
  966.      SELF-ADAPTATION:
  967.       The  inclusion  of  a  mechanism  not  only to evolve the OBJECT
  968.       VARIABLES  of  a  solution,   but   simultaneously   to   evolve
  969.       information on how each solution will generate new OFFSPRING.
  970.  
  971.      SIMULATION:
  972.       The act of modeling a natural process.
  973.  
  974.      SOFT SELECTION:
  975.       The  mechanism which allows inferior INDIVIDUALs in a POPULATION
  976.       a non-zero probability of  surviving  into  future  GENERATIONs.
  977.       See HARD SELECTION.
  978.  
  979.      SPECIATION:
  980.       (biol)  The process whereby a new SPECIES comes about.  The most
  981.       common cause of SPECIATION is that of geographical isolation. If
  982.       a SUB-POPULATION of a single species is separated geographically
  983.       from the main POPULATION for a  sufficiently  long  time,  their
  984.       GENEs  will  diverge  (either  due  to  differences in SELECTION
  985.       pressures in different  locations,  or  simply  due  to  GENETIC
  986.       DRIFT).   Eventually,  genetic differences will be so great that
  987.       members of the sub-population must be considered as belonging to
  988.       a different (and new) species.
  989.  
  990.       SPECIATION is very important in evolutionary biology. Small SUB-
  991.       POPULATIONs can evolve much more rapidly than a large POPULATION
  992.       (because  genetic changes don't take long to become fixed in the
  993.       population). Sometimes, this  EVOLUTION  will  produce  superior
  994.       INDIVIDUALs  which  can  outcompete,  and eventually replace the
  995.       SPECIES of the original, main population.
  996.  
  997.       (EC) Techniques analogous to geographical isolation are used  in
  998.       a number of GAs.  Typically, the POPULATION is divided into SUB-
  999.       POPULATIONs, and INDIVIDUALs  are  only  allowed  to  mate  with
  1000.       others  in the same sub-population. (A small amount of MIGRATION
  1001.       is performed.)
  1002.  
  1003.       This  produces  many  SUB-POPULATIONs  which  differ  in   their
  1004.       characteristics,  and may be referred to as different "species".
  1005.       This technique can be useful for finding multiple solutions to a
  1006.       problem, or simply maintaining diversity in the SEARCH SPACE.
  1007.  
  1008.       Most   biology/genetics   textbooks   contain   information   on
  1009.       SPECIATION.  A more detailed account can be found in  "Genetics,
  1010.       Speciation  and  the  Founder  Principle",  L.V.  Giddings, K.Y.
  1011.       Kaneshiro and W.W.  Anderson  (Eds.),  Oxford  University  Press
  1012.       1989.
  1013.  
  1014.      SPECIES:
  1015.       (biol)  There  is  no  universally-agreed  firm  definition of a
  1016.       SPECIES.  A species may be roughly defined as  a  collection  of
  1017.       living  creatures,  having  similar  characteristics,  which can
  1018.       breed together to produce  viable  OFFSPRING  similar  to  their
  1019.       PARENTs.   Members  of  one  species  occupy the same ecological
  1020.       NICHE.  (Members of different species may occupy  the  same,  or
  1021.       different niches.)
  1022.  
  1023.       (EC)  In  EC  the  definition  of "species" is less clear, since
  1024.       generally it is always possible for a pair INDIVIDUALs to  breed
  1025.       together.   It  is  probably safest to use this term only in the
  1026.       context  of  algorithms   which   employ   explicit   SPECIATION
  1027.       mechanisms.
  1028.  
  1029.       (biol)  The  existence  of  different  SPECIES  allows different
  1030.       ecological NICHEs to be exploited. Furthermore, the existence of
  1031.       a  variety  of different species itself creates new niches, thus
  1032.       allowing room for further species. Thus nature bootstraps itself
  1033.       into almost limitless complexity and diversity.
  1034.  
  1035.       Conversely,  the domination of one, or a small number of SPECIES
  1036.       reduces the number of viable  NICHEs,  leads  to  a  decline  in
  1037.       diversity,  and  a  reduction  in  the  ability to cope with new
  1038.       situations.
  1039.  
  1040.       "Give any one species too much rope, and they'll fuck it up"
  1041.  
  1042.       --- Roger Waters, "Amused to Death", 1992
  1043.  
  1044.      STANDARD DEVIATION:
  1045.       A measurement for the spread of a set of data; a measurement for
  1046.       the variation of a random variable.
  1047.  
  1048.      STATISTICS:
  1049.       Descriptive  measures  of data; a field of mathematics that uses
  1050.       probability theory to gain insight into systems' behavior.
  1051.  
  1052.      STEPSIZE:
  1053.       Typically, the average distance in the appropriate space between
  1054.       a PARENT and its OFFSPRING.
  1055.  
  1056.      STRATEGY VARIABLE:
  1057.       Evolvable  parameters  that relate the distribution of OFFSPRING
  1058.       from a PARENT.
  1059.      SUB-POPULATION:
  1060.       A POPULATION may be  sub-divided  into  groups,  known  as  SUB-
  1061.       POPULATIONs,  where INDIVIDUALs may only mate with others in the
  1062.       same  group.  (This  technique  might  be  chosen  for  parallel
  1063.       processors).  Such  sub-divisions  may  markedly  influence  the
  1064.       evolutionary dynamics of a population (e.g.  Wright's  'shifting
  1065.       balance'  model).  Sub-populations  may  be  defined  by various
  1066.       MIGRATION constraints: islands with limited arbitrary migration;
  1067.       stepping-stones   with   migration   to   neighboring   islands;
  1068.       isolation-by-distance in which each individual mates  only  with
  1069.       near neighbors. cf PANMICTIC POPULATION, SPECIATION.
  1070.  
  1071.      SUMMERSCHOOL:
  1072.       (USA)  One  of the most interesting things in the US educational
  1073.       system: class work during the summer break.
  1074.  
  1075.  T
  1076.      TERMINAL SET:
  1077.       (GP) The set  of  terminal  (leaf)  nodes  in  the  parse  trees
  1078.       representing  the  programs in the POPULATION.  A terminal might
  1079.       be a variable, such as X, a constant value, such as 42, (cf Q42)
  1080.       or a function taking no arguments, such as (move-north).
  1081.  
  1082.      TRAVELLING SALESMAN PROBLEM:
  1083.       The  travelling salesperson has the task of visiting a number of
  1084.       clients, located in different cities. The problem to  solve  is:
  1085.       in  what order should the cities be visited in order to minimise
  1086.       the total distance travelled (including returning home)? This is
  1087.       a classical example of an ORDER-BASED PROBLEM.
  1088.  
  1089.      TSP: See TRAVELLING SALESMAN PROBLEM.
  1090.  
  1091.  U
  1092.      USENET:
  1093.       "Usenet  is like a herd of performing elephants with diarrhea --
  1094.       massive, difficult to redirect, awe-inspiring, entertaining, and
  1095.       a  source  of  mind-boggling amounts of excrement when you least
  1096.       expect it."
  1097.  
  1098.       --- Gene Spafford (1992)
  1099.  
  1100.  V
  1101.      VALUE-BASED PROBLEM:
  1102.       A problem where the solution must be specified in terms of a set
  1103.       of  real-valued  parameters.  FUNCTION OPTIMIZATION problems are
  1104.       of this type.  cf SEARCH SPACE, ORDER-BASED PROBLEM.
  1105.  
  1106.      VECTOR OPTIMIZATION:
  1107.       Typically, an OPTIMIZATION problem wherein  multiple  objectives
  1108.       must be satisfied.
  1109.  
  1110.  Z
  1111.      ZEN NAVIGATION:
  1112.       A  methodology  with  tremendous propensity to get lost during a
  1113.       hike from A to B.  ZEN NAVIGATION  simply  consists  in  finding
  1114.       something  that  looks  as  if  it knew where it is going to and
  1115.       follow  it.   The  results  are  more  often   surprising   than
  1116.       successful, but it's usually being worth for the sake of the few
  1117.       occasions when it is both.
  1118.  
  1119.       Sometimes ZEN NAVIGATION is referred  to  as  "doing  scientific
  1120.       research,"  where  A is a state of mind being considered as pre-
  1121.       PhD, and B (usually a different) state of mind, known  as  post-
  1122.       PhD. While your time spent in state C, somewhere inbetween A and
  1123.       B, is usually referred to as "being a nobody."
  1124.  
  1125.  
  1126. ACKNOWLEDGMENTS
  1127.      Finally, credit where credit is due. I'd like to thank all the people
  1128.      who  helped  in  assembling  this  guide,  and their patience with my
  1129.      "variations on English  grammar".  In  the  order  I  received  their
  1130.      contributions, thanks to:
  1131.  
  1132.  Contributors,
  1133.      Lutz  Prechelt  (University  of  Karlsruhe)  the  comp.ai.neural-nets
  1134.      FAQmeister, for letting  me  strip  several  ideas  from  "his"  FAQ.
  1135.      Ritesh  "peace"  Bansal  (CMU)  for  lots of comments and references.
  1136.      David  Beasley  (University  of  Wales)  for  a  valuable   list   of
  1137.      publications  (Q12),  and many further additions.  David Corne, Peter
  1138.      Ross,  and  Hsiao-Lan  Fang  (University  of  Edinburgh)  for   their
  1139.      TIMETABLING  and  JSSP  entries.   Mark  Kantrowitz (CMU) for mocking
  1140.      about this-and-that, and being a "mostly valuable" source  concerning
  1141.      FAQ  maintenance;  parts  of  A11  have  been stripped from "his" ai-
  1142.      faq/part4 FAQ; Mark also contributed the less verbose ARCHIVE  SERVER
  1143.      infos.   The  texts  of  Q1.1,  Q1.5, Q98 and some entries of Q99 are
  1144.      courtesy by James  Rice  (Stanford  University),  stripped  from  his
  1145.      genetic-programming  FAQ  (Q15).   Jonathan  I. Kamens (MIT) provided
  1146.      infos on how-to-hook-into the USENET FAQ  system.   Una  Smith  (Yale
  1147.      University)  contributed  the  better parts of the Internet resources
  1148.      guide  (Q15.5).   Daniel   Polani   (Gutenberg   University,   Mainz)
  1149.      "contributed"  the  Alife  II  Video  proceedings  info.   Jim  McCoy
  1150.      (University of Texas) reminded me of  the  GP  archive  he  maintains
  1151.      (Q20).   Ron Goldthwaite (UC Davis) added definitions of Environment,
  1152.      Evolution, Fitness, and Population to the glossary, and some thoughts
  1153.      why   Biologists  should  take  note  of  EC  (Q3).   Joachim  Geidel
  1154.      (University of Karlsruhe) sent a diff of the  current  "navy  server"
  1155.      contents  and the software survey, pointing to "missing links" (Q20).
  1156.      Richard Dawkins "Glossary" section of "The extended phenotype" served
  1157.      for many new entries, too numerous to mention here (Q99).  Mark Davis
  1158.      (New  Mexico  State  University)  wrote  the  part  on   Evolutionary
  1159.      Programming  (Q1.2).   Dan Abell (University of Maryland) contributed
  1160.      the section on efficient greycoding (Q21).  Walter Harms  (University
  1161.      of  Oldenburg)  commented  on introductory EC literature.  Lieutenant
  1162.      Colonel J.S. Robertson (USMA, West Point), for providing a  home  for
  1163.      this      subversive      posting     on     their     FTP     server
  1164.      euler.math.usma.edu/pub/misc/GA Rosie O'Neill for suggesting the  PhD
  1165.      thesis entry (Q10.11).  Charlie Pearce (University of Nottingham) for
  1166.      critical remarks  concerning  "tables";  well,  here  they  are!   J.
  1167.      Ribeiro Filho (University College London) for the pointer to the IEEE
  1168.      Computer GA  Software  Survey;  the  PeGAsuS  description  (Q20)  was
  1169.      stripped from it.  Paul Harrald for the entry on game playing (Q2).
  1170.  
  1171.  Reviewers,
  1172.      Robert  Elliott  Smith  (The University of Alabama) reviewed the TCGA
  1173.      infos (Q14), and Nici Schraudolph (UCSD) first  unconsciously,  later
  1174.      consciously, provided about 97% of Q20* answers.  Nicheal Lynn Cramer
  1175.      (BBN) adjusted my historic view of GP genesis.  David Fogel (ORINCON)
  1176.      commented and helped on this-and-that (where this-and-that is closely
  1177.      related to EP), and provided many missing entries  for  the  glossary
  1178.      (Q99).   Kazuhiro  M.  Saito  (MIT)  and Mark D. Smucker (Iowa State)
  1179.      caught my favorite typo(s).  Craig W.  Reynolds  was  the  first  who
  1180.      solved one of the well-hidden puzzles in the FAQ, and also added some
  1181.      valuable stuff.  Joachim  Born  (TU  Berlin)  updated  the  Evolution
  1182.      Machine  (EM) entry and provided the pointer to the Bionics technical
  1183.      report ftp site (Q14).  Pattie Maes  (MIT  Media  Lab)  reviewed  the
  1184.      ALIFE IV additions to the list of conferences (Q12).  Scott D. Yelich
  1185.      (Santa Fe Institute) reviewed the SFI connectivity entry (Q15).  Rick
  1186.      Riolo  (MERIT)  reviewed  the  CFS-C  entry  (Q20).  Davika Seunarine
  1187.      (Acadia Univ.)  for smoothing out this and that.  Paul  Field  (Queen
  1188.      Mary  and  Westfield  College)  for  correcting  typos, and providing
  1189.      insights into the blindfold pogo-sticking nomads of the Himalayas.
  1190.  
  1191.  and Everybody...
  1192.      Last not least I'd like to thank Hans-Paul  Schwefel,  Thomas  Baeck,
  1193.      Frank  Kursawe, Guenter Rudolph for their contributions, and the rest
  1194.      of the Systems Analysis Research Group for wholly remarkable patience
  1195.      and almost incredible unflappability during my various extravangances
  1196.      and ego-trips during my time (1990-1993) with this group.
  1197.  
  1198.      It was a tremendously worthwhile experience. Thanks!
  1199.  
  1200.  
  1201.  
  1202.  
  1203.  
  1204.  
  1205.  
  1206.        "And all our yesterdays have lighted fools; the way to dusty death;
  1207.     out, out brief candle; life's but a walking shadow; a poor player;
  1208.       that struts and gets his hour upon the stage; and then is heared
  1209.        no more; it is a tale; told by an idiot, full of sound an fury,
  1210.                               signifying nothing."
  1211.  
  1212.                           --- Shakespeare, Macbeth
  1213.  
  1214.  
  1215.  
  1216.  
  1217.  
  1218. EPILOGUE
  1219.               "Natural selection is a mechanism for generating
  1220.                  an exceedingly high degree of improbability."
  1221.  
  1222.                   --- Sir Ronald Aylmer Fisher (1890-1962)
  1223.  
  1224.  
  1225.      This is a GREAT quotation, it sounds like something directly out of a
  1226.     turn of the century Douglas Adams: Natural selection: the original
  1227.                         "Infinite Improbability Drive"
  1228.  
  1229.              --- Craig Reynolds, on reading the previous quote
  1230.  
  1231.      "`The  Babel  fish,'  said  The  Hitch  Hiker's  Guide  to the Galaxy
  1232.      quietly, `is small, yellow and leech-like, and  probably  the  oddest
  1233.      thing  in  the  Universe.   It feeds on brainwave energy received not
  1234.      from his own carrier  but  from  those  around  it.  It  absorbs  all
  1235.      unconscious  mental frequencies from this brainwave energy to nourish
  1236.      itself with.  It then  excretes  into  the  mind  of  its  carrier  a
  1237.      telepathic   matrix   formed   by  combining  the  conscious  thought
  1238.      frequencies with nerve signals picked up from the speech  centers  of
  1239.      the  brain which has supplied them.  The practical upshot of all this
  1240.      is that if you stick a Babel fish  in  your  ear  you  can  instantly
  1241.      understand  anything  said to you in any form of language. The speech
  1242.      patterns you actually hear decode the brainwave matrix which has been
  1243.      fed  into  your mind by your Babel fish.  `Now it is such a bizarrely
  1244.      improbable coincidence than anything so mindbogglingly  useful  could
  1245.      have  evolved  purely by chance that some thinkers have chosen to see
  1246.      it as a final and clinching proof of the non-existence of God.   `The
  1247.      argument  goes  something  like  this:  ``I  refuse  to  prove that I
  1248.      exist,'' says God, ``for proof denies faith, and without faith  I  am
  1249.      nothing.''   ``But,''  says  Man, ``The Babel fish is a dead giveaway
  1250.      isn't it?  It could not have evolved by chance. It proves you  exist,
  1251.      and  so  therefore,  by  your  own arguments, you don't. QED.''  ``Oh
  1252.      dear,'' says God, ``I hadn't thought of that,'' and promptly vanishes
  1253.      in  a  puff  of  logic.   ``Oh, that was easy,'' says Man, and for an
  1254.      encore goes on to prove that black is white and gets  himself  killed
  1255.      on the next zebra crossing."
  1256.  
  1257.                           --- Douglas Adams (1979)
  1258.  
  1259.      "Well, people; I really wish this thingie to turn into a paper babel-
  1260.      fish for all those young ape-descended organic  life  forms  on  this
  1261.      crazy  planet,  who don't have any clue about what's going on in this
  1262.      exciting  "new"  research  field,  called  Evolutionary  Computation.
  1263.      However,  this  is  just  a  start,  I need your help to increase the
  1264.      usefulness of this guide, especially  its  readability  for  natively
  1265.      English  speaking  folks;  whatever  it  is:  I'd  like  to hear from
  1266.      you...!"
  1267.  
  1268.                                 --- The Editor
  1269.  
  1270.            "Parents of young organic life forms should be warned, that
  1271.        paper babel-fishes can be harmful, if stuck too deep into the ear."
  1272.  
  1273.                         --- Encyclopedia Galactica
  1274.  
  1275.  
  1276.  
  1277.  
  1278. ------------------------------
  1279.  
  1280. End of ai-faq/genetic/part6
  1281. ***************************
  1282.  
  1283.